home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cbibcode.arc / PUTCH.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-05  |  233 b   |  10 lines

  1. /* putch.c --- p 527 */
  2. #include <conio.h>
  3. char buffer[81] = "Testing putch...\n";
  4. main()
  5. {
  6.     int i;
  7.         /* Write characters to display until we reach the null */
  8.     for(i=0; i<81 && buffer[i] != '\0'; i++)
  9.         putch(buffer[i]);
  10. }